home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-12-06 | 436 b | 20 lines | [TEXT/PJMM] |
- unit FastPerfTrigs;
-
- (* Unit to implement fast trig functions using lookup tables *)
- interface
-
- const
- TableLoadErr = resNotFound;
- WrongVersionErr = -2;
-
- function InitTrigs: OSErr;
- procedure CloseTrigs;
- function GetSinResolution: integer;
- function GetCosResolution: integer;
- function GetTanResolution: integer;
- function FSin (x: real): real;
- function FCos (x: real): real;
- function FTan (x: real): real;
-
- implementation
- end.